home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Web Server / Xitami Multithreaded Web Server.exe / PIPEDEF.XML < prev    next >
Encoding:
Text File  |  1999-12-08  |  2.6 KB  |  79 lines

  1. <!-----------------------------------------------------------------------
  2.     pipedef.xml - Pipe (throttle) definitions
  3.  
  4.     Written: 99/08/23   Xitami team xitami@imatix.com
  5.     Revised: 99/12/07   Xitami team xitami@imatix.com
  6.  
  7.     How to use this file:
  8.  
  9.     The XML structure is:
  10.         DATA 
  11.           PIPE
  12.             INSTANCE
  13.  
  14.     The pipe definition is applied to zero or more 'instances', which
  15.     are the throttle pipes that the application can use.  A pipe with
  16.     no instances is not used.
  17.     
  18.     PIPE has these attributes:
  19.         NAME       Name of pipe
  20.         RATE       Input/output rate, bytes per second           
  21.         OUTRATE    Output rate, specified seperately
  22.         INRATE     Input rate, specified seperately
  23.         UNITS      Rate multiplication factor (1)
  24.     INSTANCE has these attributes:
  25.         NAME       Instance name
  26.     --------------------------------------------------------------------->
  27. <DATA>
  28.  
  29. <PIPE NAME = "1k"    RATE = "1"     UNITS = "1024" >
  30.     <INSTANCE NAME = "1k pipe" />
  31. </PIPE>
  32. <PIPE NAME = "2k"    RATE = "2"     UNITS = "1024" >
  33.     <INSTANCE NAME = "2k pipe" />
  34. </PIPE>
  35. <PIPE NAME = "4k"    RATE = "4"     UNITS = "1024" >
  36.     <INSTANCE NAME = "4k pipe" />
  37. </PIPE>
  38. <PIPE NAME = "8k"    RATE = "8"     UNITS = "1024" >
  39.     <INSTANCE NAME = "8k pipe" />
  40. </PIPE>
  41. <PIPE NAME = "16k"   RATE = "16"    UNITS = "1024" >
  42.     <INSTANCE NAME = "16k pipe" />
  43. </PIPE>
  44. <PIPE NAME = "32k"   RATE = "32"    UNITS = "1024" >
  45.     <INSTANCE NAME = "32k pipe A" />
  46.     <INSTANCE NAME = "32k pipe B" />
  47. </PIPE>
  48. <PIPE NAME = "64k"   RATE = "64"    UNITS = "1024" >
  49.     <INSTANCE NAME = "64k pipe A" />
  50.     <INSTANCE NAME = "64k pipe B" />
  51. </PIPE>
  52. <PIPE NAME = "128k" RATE = "128"  UNITS = "1024" >
  53.     <INSTANCE NAME = "128k pipe A" />
  54.     <INSTANCE NAME = "128k pipe B" />
  55. </PIPE>
  56. <PIPE NAME = "256k" RATE = "256"  UNITS = "1024" >
  57.     <INSTANCE NAME = "256k pipe A" />
  58.     <INSTANCE NAME = "256k pipe B" />
  59. </PIPE>
  60. <PIPE NAME = "512k" RATE = "512"  UNITS = "1024" >
  61.     <INSTANCE NAME = "512k pipe A" />
  62.     <INSTANCE NAME = "512k pipe B" />
  63. </PIPE>
  64. <PIPE NAME = "1M"   RATE = "1024" UNITS = "1024" >
  65.     <INSTANCE NAME = "1M pipe A" />
  66. </PIPE>
  67. <PIPE NAME = "2M"   RATE = "2048" UNITS = "1024" >
  68.     <INSTANCE NAME = "2M pipe A" />
  69. </PIPE>
  70. <PIPE NAME = "4M"   RATE = "4096" UNITS = "1024" />
  71. <PIPE NAME = "8M"   RATE = "8192" UNITS = "1024" />
  72.  
  73. <PIPE NAME = "ADSL" INRATE = "256" OUTRATE = "64" UNITS = "1024" >
  74.     <INSTANCE NAME = "ADSL pipe A" />
  75.     <INSTANCE NAME = "ADSL pipe B" />
  76. </PIPE>
  77.  
  78. </DATA>
  79.